        body{
            background-color: black;
        }
        .p   {
            font-family: 'helvetica';
            color: black;
            font-size: 20px;
        }
        .heroheader  {
            font-family: 'Poppins';
            text-align: center;
            color: floralwhite
        }
        .h1  {
            font-family: 'Poppins';
            text-align: center;
            color: floralwhite
        }
        .h2  {
            font-family: 'helvetica';
            text-align: center
        }
        .h3  {
            font-family: 'helvetica';
            color: darkolivegreen;
        }     
        .footer  {
            font-family: 'helvetica';
            text-align: center;
            color: floralwhite
        }
        .row {
            display: flex;
        }
        .column {
            flex: 50%;
            padding: 40px;}
            * {box-sizing:border-box
        }
        .sidebar {
            font-family: 'Poppins';
            height: 100%;
            width: 0;
            position: fixed;
            z-index: 1;
            top: 0;
            left: 0;
            background-color: black;
            overflow-x: hidden;
            transition: 0.5s;
            padding-top: 60px;
          }
          
        .sidebar a {
            padding: 8px 8px 8px 32px;
            text-decoration: none;
            font-size: 25px;
            color: floralwhite;
            display: block;
            transition: 0.3s;
          }
          
        .sidebar a:hover {
            color: floralwhite;
          }
          
        .sidebar .closebtn {
            position: absolute;
            top: 0;
            right: 25px;
            margin-left: 0px;
          }
          
        .openbtn {
            font-size: 20px;
            cursor: pointer;
            background-color: black;
            color: floralwhite;
            padding: 10px 15px;
            border: none;
          }
          
        .openbtn:hover {
            background-color: darkolivegreen;
          }
          
#main {
            transition: margin-left .5s;
            padding: 16px;
          }
          
 /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
 @media screen and (max-height: 450px) {
            .sidebar {padding-top: 15px;}
            .sidebar a {font-size: 18px;}
    }
         /* Slideshow container */
.slideshow-container {
    max-width: 2000px;
    position: relative;
    margin: auto;
  }
  
  /* Caption text */
  .text {
    font-family: 'Poppins';
    color:floralwhite;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
  }
  
  /* Number text (1/3 etc) not in use */
  .numbertext {
    color: floralwhite;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
  }
  
  /* The dots/bullets/indicators */
  .dot {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .active {
    background-color: #717171;
  }
  
  /* Fading animation */
  .fade {
    animation-name: fade;
    animation-duration: 5.5s;
  }
  
  @keyframes fade {
    from {opacity: .4} 
    to {opacity: 1}
  }
  
  /* On smaller screens, decrease text size */
  @media only screen and (max-width: 300px) {
    .text {font-size: 11px}
  }